home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / port / bsdi / cuserid.c next >
C/C++ Source or Header  |  1994-08-01  |  179b  |  14 lines

  1. #include <stddef.h>
  2. #include <unistd.h>
  3. #include <stdio.h>
  4.  
  5. char *
  6. cuserid(char *s)
  7. {
  8.     if (s) {
  9.     strncpy(s, getlogin(), L_cuserid);
  10.     return s;
  11.     } else
  12.     return getlogin();
  13. }
  14.